Skip to main content

FAQs

What is libssl.so.10 error?

libssl_error_image

  • The error message "libssl.so.10: cannot open shared object file: No such file or directory" indicates that a program is trying to use the OpenSSL library but it cannot find the required file.
  • FIX:
    • Confirm you dont have libssl.so.1.1 on your server probably by trying:
          find / -name 'libssl.so*' 2>/dev/null
    • If found, link it to the path variable.
          sudo ldconfig /path/to/lib
    • If not found,simply run following cmd:
          sudo yum install -y openssl11-libs

What is libodbc.so.2 error?

libodbc_error_image

  • The error message "libodbc.so.2: cannot open shared object file: No such file or directory" indicates that a program is trying to use the ODBC library but it cannot find the required file.
  • FIX:
    • Confirm you dont have libodbc.so.2 on your server probably by trying:
          find / -name 'libodbc.so*' 2>/dev/null
    • If found, link it to the path variable.
          sudo ldconfig /path/to/lib
    • If not found,simply run following cmd:
          sudo apt install unixodbc